JavaScript

listObj._logicalRow2PhysicalRow Method

Syntax

listObj._logicalRow2PhysicalRow(rowNumber)

Arguments

rowNumbernumber

A logical row number.

Returns

resultnumber

Returns the physical row number in the filtered/sorted List.

Description

Takes the logical row number (the value of the *key property in the data object - also the same as the row number in the data when it is loaded - before any client side sorting/filtering) and converts to a physical row number in the current sorted/filtered client side view of the data.

Example

var listObj = {dialog.object}.getControl("LIST1");

if (listObj) {
    var physicalRow = listObj._logicalRow2PhysicalRow(2);
}

Limitations

List Control with Detail View Part

See Also